home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 January: Mac OS SDK / Dev.CD Jan 97 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / ODFDev / ODF / Framewrk / FWViews / FWUnknow.h < prev    next >
Encoding:
Text File  |  1996-09-17  |  1.3 KB  |  58 lines  |  [TEXT/MPS ]

  1. //========================================================================================
  2. //
  3. //    File:                FWUnknow.h
  4. //    Release Version:    $ ODF 2 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWUNKNOW_H
  11. #define FWUNKNOW_H
  12.  
  13. #ifndef FWSVIEW_H
  14. #include "FWSView.h"
  15. #endif
  16.  
  17. #ifndef FWSTRING_H
  18. #include "FWString.h"
  19. #endif
  20.  
  21. #ifndef FW
  22. #include "FWString.h"
  23. #endif
  24.  
  25. //========================================================================================
  26. // Class FW_CUnknownView
  27. //========================================================================================
  28.  
  29. class FW_CUnknownView : public FW_CSuperView
  30. {
  31. public:
  32.     FW_DECLARE_AUTO(FW_CUnknownView)
  33.     
  34.     FW_CUnknownView(Environment* ev, 
  35.                     FW_CSuperView* container, 
  36.                     ODID viewID,
  37.                     FW_CRect& bounds,
  38.                     FW_CString& name);
  39.     
  40.     FW_CUnknownView(Environment* ev, 
  41.                     FW_CSuperView* container, 
  42.                     ODID viewID,
  43.                     FW_CRect& bounds, 
  44.                     FW_CPoint& extent,
  45.                     FW_EScrollingDirection scrollDir,
  46.                     FW_CString& name);
  47.                     
  48.     virtual ~FW_CUnknownView();
  49.  
  50.     virtual void     Draw(Environment* ev, ODFacet* odFacet, ODShape* invalidShape);
  51.  
  52. private:
  53.     FW_CString         fClassName;
  54. };
  55.  
  56. #endif
  57.  
  58.